home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / wais / waisgate / transprt.h < prev    next >
C/C++ Source or Header  |  1995-05-09  |  804b  |  35 lines

  1. /* this is the header for transprt.c
  2.  * -brewster
  3.  * revise log:
  4.  *  11/14/90   -Tracy Shen
  5.  *   add the followinf functions:
  6.  *   transportCodeH, transportDecodeH, transportCodeI, transportDecodeI
  7.  */
  8.  
  9. #ifndef TRANSPRT_H
  10. #define TRANSPRT_H
  11.  
  12. #include "cdialect.h"
  13.  
  14. #include "cutil.h"
  15.  
  16. #ifdef __cplusplus
  17. /* declare these as C style functions */
  18. extern "C"
  19.     {
  20. #endif /* def __cplusplus */
  21.  
  22. boolean transportCode _AP((long encoding,char* data,long* len));
  23. boolean transportDecode _AP((long encoding,char* data,long* len));
  24.  
  25. void transportCodeH _AP((char* data,long* len));
  26. void transportDecodeH _AP((char* data,long* len));
  27.  
  28. void transportCodeI _AP((char* data,long* len));
  29. void transportDecodeI _AP((char* data,long* len));
  30.  
  31. #ifdef __cplusplus
  32.     }
  33. #endif /* def __cplusplus */
  34. #endif /* ndef TRANSPRT_H */
  35.